.info-card__container {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    text-align: center;
    max-width: 380px;
}

.info-card__outerwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    gap: 20px;
}

.info-card__wrapper {
    width: 100%;
    height: 100%;
}

.info-card__photo {
    background-position: center;
    background-size: cover;
    height: 300px;
    width: 100%;
    border-radius: 12px;
    display: block;
    max-width: 380px;
    cursor: pointer;
}

.info-card__photo img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
}

.info-card__title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
}

.info-card__button-wrapper {
    margin-top: 18px;
}

.info-card__button-wrapper .btn {
    border: none;
    padding: 12px 24px;
    cursor: pointer;
}

.info-card__button-wrapper .btn.outline {
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.6);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.info-card__button-wrapper .btn.outline:hover {
    -webkit-transform: scale(1.125);
        -ms-transform: scale(1.125);
            transform: scale(1.125);
    color: rgba(0, 0, 0, 0.9);
    border-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all .3x ease;
    -o-transition: all .3x ease;
    transition: all .3x ease;
}

.info-card {
    margin-bottom: 100px;
}

.info-cards .modal-photo {
    height: 300px;
    flex-basis: 300px;
}

.info-card__inner-wrapper {
    min-height: 140px;
}

.info-cards .modulelinks {
    padding-left: 110px;
}

.info-cards .modal-body .text-justify {
	flex-basis: 500px;
}

.info-cards .modal-body {
	display: flex;
	flex-flow: row wrap;
	gap: 25px;
}